home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-19 | 703 b | 24 lines | [TEXT/CWIE] |
- // =================================================================================
- // CThreadsApp.h ©1996 Metrowerks Inc. All rights reserved.
- // =================================================================================
-
- #pragma once
-
- #include <LApplication.h>
-
- class CThreadsApp : public LApplication {
- public:
- CThreadsApp();
- virtual ~CThreadsApp();
-
- virtual Boolean ObeyCommand( CommandT inCommand, void *ioParam );
- virtual void FindCommandStatus( CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName );
-
- virtual void AdjustCursor (const EventRecord &inMacEvent);
-
- protected:
- virtual void StartUp();
- };
-